FridaApp

@Composable
fun FridaApp(onCloseRequest: () -> Unit = {})

This is the main application component. It sets up the socket connection and the window for the application.

Parameters

onCloseRequest

A function to be called when the window close request is triggered.

Example usage:

FridaApp(
onCloseRequest = { /* action to perform on window close request */}
)